home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 24 / zephyr.zip / ZEPHYR.DOC next >
Text File  |  1987-08-13  |  3KB  |  88 lines

  1.  
  2.  
  3.                               **********************
  4.                               *----- ZANSI 1.2 ----*
  5.                               **********************
  6.  
  7.  
  8.                                 Thomas Hanlin III
  9.                                1712 Maple Hill Pl.
  10.                                Alexandria VA 22302
  11.  
  12.  
  13.  
  14.      ZANSI copyright (C) 1986-1987, Thomas Hanlin III.  Refer any problems
  15. to me at the above address.
  16.  
  17.      This is the Zephyr ANSI driver, based on Daniel Kegel's excellent ANSI
  18. driver, NANSI (version 2.2).  ZANSI is faster than NANSI and takes up less
  19. memory and disk space.  However, ZANSI is slightly less powerful, as it is
  20. missing the nonstandard character translation handler provided with NANSI.
  21. It is also missing the keyboard translation capabilities provided by ANSI
  22. and NANSI.  This was originally a ZANSI bug, but has become a feature due
  23. to lack of any complaint about it!  As far as I can guess, nobody uses
  24. that feature, so I reduced the size of ZANSI by removing it entirely.
  25.  
  26.      Distribution policy follows Mr. Kegel's rules: ZANSI may be distributed
  27. for educational and personal use only.  Commercial use is forbidden.  If you
  28. need such a product for commercial applications, please contact Mr. Kegel
  29. about his program, NANSI.  He may be contacted at the following address:
  30. Daniel Kegel, 2648 169th Ave SE, Bellevue, WA 98008.
  31.  
  32.      ZANSI replaces whatever ANSI driver you currently have installed (if
  33. any).  To use it, you should copy ZANSI.SYS to the root directory of the
  34. disk(s) you use to boot up (start) your computer.  You must also have the
  35. following line in the file CONFIG.SYS in the root directory of your boot
  36. disk: DEVICE=ZANSI.SYS
  37.  
  38.      If you have DEVICE=ANSI.SYS or DEVICE=NANSI.SYS, you must remove it
  39. before the DEVICE=ZANSI.SYS line.
  40.  
  41.      If this isn't clear to you, please consult your DOS manual.
  42.  
  43.  
  44.  
  45. -------------------------------------------------------------------------------
  46.  
  47.  
  48.  
  49. Print speed comparisons, with normal text:
  50.  (Tests done on a Compaq Portable with a Microsoft Mach 10 speedup board
  51.   running an 8086 processor at 9.54 MHz)
  52.  
  53.  
  54.      ANSI  is  18.1%  faster than no device driver.
  55.  
  56.      NANSI is  39.9%  faster than no device driver,
  57.            or  26.5%  faster than ANSI.
  58.  
  59.      ZANSI is  44.7%  faster than no device driver,
  60.            or  32.4%  faster than ANSI,
  61.            or   8.0%  faster than NANSI.
  62.  
  63.  
  64. Memory requirement comparisons:
  65.  
  66.   No driver:     0  bytes
  67.   ANSI     :  1536  bytes
  68.   NANSI    :  3200  bytes
  69.   ZANSI    :  2720  bytes
  70.  
  71.  
  72.  
  73. ------------------------------------------------------------------------------
  74.  
  75.  
  76.  
  77.      Assembly language programmers:  The source code to ZANSI is included.
  78. To create a working copy of ZANSI.SYS, you need to do the following:
  79.  
  80.  MASM ZANSI;
  81.  MASM ZANSI_P;
  82.  MASM ZANSI_F;
  83.  MASM ZANSI_I;
  84.  LINK ZANSI+ZANSI_P+ZANSI_F+ZANSI_I;
  85.  EXE2BIN ZANSI ZANSI.SYS
  86.  
  87.      You can ignore the "no stack" warning error produced by LINK.
  88.